1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
| package cn.itcast.test;
import javax.persistence.criteria.*; import java.util.List;
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = "classpath:applicationContext.xml") public class SpecTest {
@Autowired private CustomerDao customerDao;
@Test public void testSpec() {
Specification<Customer> spec = new Specification<Customer>() { @Override public Predicate toPredicate(Root<Customer> root, CriteriaQuery<?> query, CriteriaBuilder cb) { Path<Object> custName = root.get("custId");
Predicate predicate = cb.equal(custName, "传智播客"); return predicate; } }; Customer customer = customerDao.findOne(spec); System.out.println(customer); }
@Test public void testSpec1() {
Specification<Customer> spec = new Specification<Customer>() { @Override public Predicate toPredicate(Root<Customer> root, CriteriaQuery<?> query, CriteriaBuilder cb) { Path<Object> custName = root.get("custName"); Path<Object> custIndustry = root.get("custIndustry");
Predicate p1 = cb.equal(custName, "传智播客"); Predicate p2 = cb.equal(custIndustry, "it教育"); Predicate and = cb.and(p1, p2); return and; } }; Customer customer = customerDao.findOne(spec); System.out.println(customer); }
@Test public void testSpec3() { Specification<Customer> spec = new Specification<Customer>() { @Override public Predicate toPredicate(Root<Customer> root, CriteriaQuery<?> query, CriteriaBuilder cb) { Path<Object> custName = root.get("custName"); Predicate like = cb.like(custName.as(String.class), "传智播客%"); return like; } };
Sort sort = new Sort(Sort.Direction.DESC,"custId"); List<Customer> list = customerDao.findAll(spec, sort); for (Customer customer : list) { System.out.println(customer); } }
@Test public void testSpec4() {
Specification spec = null;
Pageable pageable = new PageRequest(0,2); Page<Customer> page = customerDao.findAll(null, pageable); System.out.println(page.getContent()); System.out.println(page.getTotalElements()); System.out.println(page.getTotalPages()); } }
|